home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / string_.h < prev    next >
C/C++ Source or Header  |  1994-08-24  |  2KB  |  49 lines

  1. /* Copyright (C) 1989, 1992, 1993, 1994 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* string.h */
  20. /* Generic substitute for Unix string.h */
  21.  
  22. /* We must include std.h before any file that includes sys/types.h. */
  23. #include "std.h"
  24.  
  25. #ifdef BSD4_2
  26. #  include <strings.h>
  27. #  define strchr index
  28. #else
  29. #  ifdef __TURBOC__
  30. #    undef memset        /* just in case */
  31. #    include <string.h>
  32. #    ifndef memset        /* Borland C++ can inline this */
  33. #      define memset(dest,chr,cnt) setmem(dest,cnt,chr)
  34. #    endif
  35. #  else
  36. #    ifdef memory__need_memmove
  37. #      undef memmove            /* This is disgusting, but so is GCC */
  38. #    endif
  39. #    include <string.h>
  40. #    if defined(THINK_C)
  41.     /* Patch strlen to return a uint rather than a size_t. */
  42. #      define strlen (uint)strlen
  43. #    endif
  44. #    ifdef memory__need_memmove
  45. #      define memmove(dest,src,len) gs_memmove(dest,src,len)
  46. #    endif
  47. #  endif
  48. #endif
  49.